home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / be004.dxr / 00094.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  409 b   |  17 lines

  1. on exitFrame
  2.   set LastTick to the ticks
  3.   set OriginalTick to the ticks
  4.   repeat while (the ticks - OriginalTick) < 470
  5.     set x to 2 * (the ticks - LastTick)
  6.     set y to 2 * (the ticks - LastTick)
  7.     set LastTick to the ticks
  8.     set the locV of sprite 15 to the locV of sprite 15 - y
  9.     set the locH of sprite 15 to the locH of sprite 15 + x
  10.     updateStage()
  11.   end repeat
  12. end
  13.  
  14. on mouseUp
  15.   go(80)
  16. end
  17.